home *** CD-ROM | disk | FTP | other *** search
/ The Atari Compendium / The Atari Compendium (Toad Computers) (1994).iso / files / prgtools / mint / lib / mntlib44.zoo / mntlib / cfsetosp.c < prev    next >
Encoding:
C/C++ Source or Header  |  1994-03-01  |  294 b   |  18 lines

  1. /*
  2. Public domain termios cfsetospeed() for the MiNT library
  3. 10 October 1993 entropy@terminator.rs.itd.umich.edu -- first attempt
  4. */
  5.  
  6. #include <types.h>
  7. #include <termios.h>
  8.  
  9. int
  10. cfsetospeed(stp, baudcode)
  11.   struct termios *stp;
  12.   speed_t baudcode;
  13. {
  14.   stp->_c_ospeed = baudcode;
  15.   return 0;
  16. }
  17.  
  18.